home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Magazin: Amiga-CD 1996 September & October
/
Amiga-CD 1996 #9-10.iso
/
ausgabe_9_96
/
kommunikation
/
mm_030
/
rexx
/
mm_area.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1996-04-29
|
595b
|
34 lines
/*
** Example script for MM_GetAreas and MM_GetAreaInfo commands
*/
address 'MAILMANAGER'
MM_GetAreas AREA
say area.count
if RC=0 THEN DO i=0 FOR AREA.COUNT
MM_GetAreaInfo AREA.i AREA
if RC=0 THEN DO
say
say
say 'Name :' AREA.NAME
say 'Desc :' AREA.DESC
say 'Path :' AREA.PATH
say 'AltPath :' AREA.PATH
say 'Group :' AREA.GROUP
say 'Level :' AREA.LEVEL
say 'Addr :' AREA.ADDR
DO j=0 FOR AREA.NODE.COUNT
say 'Node :' AREA.NODE.j
END
say 'Type :' AREA.TYPE
say 'MBase:' AREA.MBASE
say 'NMsg :' AREA.NMSG
say 'HiMsg:' AREA.HIMSG
END
END